[IA64] Quieter Xen boot
authorAlex Williamson <alex.williamson@hp.com>
Thu, 24 May 2007 22:28:48 +0000 (16:28 -0600)
committerAlex Williamson <alex.williamson@hp.com>
Thu, 24 May 2007 22:28:48 +0000 (16:28 -0600)
Demote a couple more printks to debug level output

Signed-off-by: Alex Williamson <alex.williamson@hp.com>
xen/arch/ia64/linux-xen/setup.c
xen/arch/ia64/xen/vhpt.c

index c0a78264e6b2ae0734d3606fe82e8b19d14a07ff..153fc58c9e748819f38310e8763f79b6a06c112f 100644 (file)
@@ -873,7 +873,7 @@ cpu_init (void)
        cpu_data = per_cpu_init();
 
 #ifdef XEN
-       printk("cpu_init: current=%p\n", current);
+       printk(XENLOG_DEBUG "cpu_init: current=%p\n", current);
 #endif
 
        /*
index 25e655f5f065c29aef85600367415998d917d84c..ae0f6df7068b8557b31635d1ab65082168a8859f 100644 (file)
@@ -137,8 +137,8 @@ void __init vhpt_init(void)
                panic("vhpt_init: bad VHPT alignment!\n");
        __get_cpu_var(vhpt_paddr) = paddr;
        __get_cpu_var(vhpt_pend) = paddr + (1 << VHPT_SIZE_LOG2) - 1;
-       printk("vhpt_init: vhpt paddr=0x%lx, end=0x%lx\n",
-               paddr, __get_cpu_var(vhpt_pend));
+       printk(XENLOG_DEBUG "vhpt_init: vhpt paddr=0x%lx, end=0x%lx\n",
+              paddr, __get_cpu_var(vhpt_pend));
        vhpt_erase(paddr);
        // we don't enable VHPT here.
        // context_switch() or schedule_tail() does it.